home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 010a / dkfil25s.zip / DFIL.BAT < prev    next >
DOS Batch File  |  1991-09-22  |  508b  |  28 lines

  1. echo off
  2. cls
  3. command /c scrn05
  4. echo -
  5. echo  Do you want to Print this specific search (Y/N)?:
  6. ECHO -
  7. command /c ask
  8. if not errorlevel 2 goto nprt
  9. echo           SEARCHING ...
  10. command /c find "%1" d_stor.dta > search.prt
  11. copy search.prt prn
  12. dir/p
  13. echo .
  14. echo .
  15. echo   The file `search.prt' will be erased when you press the space bar.
  16. echo -
  17. pause
  18. del search.prt
  19. goto end
  20. :nprt
  21. echo Searching . . .
  22. command /c find "%1" | more < d_stor.dta
  23. pause
  24. goto end
  25. :end
  26. cls
  27. command /c scrn09
  28.